home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Pro 2005 June
/
DPPCPRO0605A.ISO
/
Editorial
/
Programming with Delphi 2005
/
Delphi 2005 1
/
calcvat
/
calcvat.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2005-02-22
|
166 b
|
14 lines
program Calcvat;
uses
Forms,
Vatform in 'VATFORM.PAS'; {Form1}
{$R *.RES}
begin
Application.CreateForm(TForm1, Form1);
Application.Run;
end.